create array of zeros php

41

<?php
  //Will Fill from 0 to 10 with number 0
$a = array_fill(0, 10, 0);
print_r($a);
?>

Comments

Submit
0 Comments